﻿@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, hr 
{
  padding: 0;
  margin: 0; 
  box-sizing: border-box;
}

body 
{
  color: #707070;
  /*设置字体颜色*/
  font-size: 14px;
  font-family: "微软雅黑"; 
}

.emptyPage
{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

@media (max-width: 768px) 
{
    body 
    {
        padding-bottom: 70px;
    }
}

table 
{
  border-collapse: collapse;
  border-spacing: 0; 
}

img 
{
  display: block;
}
.imgHover img
{
    transition: 0.5s;
}
.imgHover img:hover
{
    transform: scale(1.2);
}

ol, ul
{
  list-style: none; 
}

caption, th 
{
  text-align: left; 
}

h1, h2, h3, h4, h5, h6 
{
  font-weight: normal;
  font-size: 100%; 
}

/* 链接颜色设置*/
a {
  color: inherit;
  text-decoration: none; 
}
a:hover 
{
    color: #00369a;
}

.hidden
{
    display: none;
}

.floatLeft
{
    float: left;
}

.floatRight
{
    float: right;
}

.clear:after
{ 
    clear:both;
    content:'';
    display:block;
    width:0;
    height:0;
    visibility:hidden;
}

/* 单行文字超出隐藏 */

.ellipsis {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}


/* 图片自适应（imgBox需要设置独立宽高） */
.imgBox
{
    position: relative;    
}
.imgBox img{
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.marginTop
{
    margin-top: 80px;
}

.marginTop2
{
    margin-top: 40px;
}
/*去掉苹果的样式*/
input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

/*html5*/
article, aside, dialog, footer, header, section, footer, nav, figure
{
  display: block; 
}

/* 链接颜色设置*/
.main 
{
    width: 1200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.wrap 
{
    width: 1920px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 768px) 
{
    .marginTop
    {
        margin-top: 40px;
    }

    .marginTop2
    {
        margin-top: 20px;
    }
    .paddingBox
    {
        padding-left: 10px;
        padding-right: 10px;
    }
}
/*头部信息*/
.topLineBox
{
    height: 40px;
    border-bottom: 1px solid #e6e6e6;
    background: #f3f3f3;
}

.topLine
{
    line-height: 40px;
}

.topLine .companyName
{
    float: left;
}

.topLine .companyTel
{
    float: right;
    padding-left: 1.5em;
    background: url("../Images/topTelIcon.png") no-repeat left center / auto 1em;
}

@media (max-width: 768px) 
{
    .topLineBox
    {
        display: none;
    }
}


.logoBox
{
    height: 120px;
    padding: 10px 0;
}
.logoBox .logoImg,
.logoBox .topCotactBox
{
    height: 100%;
}
.logoBox .topCotactBox:before, .logoBox .logoImg:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.logoBox .logoImg img, .logoBox .topCotactBox .contactTel, .logoBox .topCotactBox img
{
    display: inline-block;
    vertical-align: middle;
    max-height: 100%;
}
.logoBox .topCotactBox small{
    display: block;
    font-size: 16px;
    color: #262626;
}
.logoBox .topCotactBox span{
    display: block;
    font-size: 24px;
    color: #00369a;
}
nav
{
    height: 55px;
    line-height: 55px;
    background-color: #00369a;
    color: #fff;
}

.nav a
{
    display: block;
    font-size: 16px;
}

.nav ul.item1> li
{
    display: table-cell;
    width: 1%;
    text-align: center;
    position: relative;
}
.nav ul.item1> li a
{
    padding: 0 18px;
}

.nav ul.item1> li.on,
.nav ul.item1> li:hover
{
    background-color: #fed001;
}

.nav ul.item1> li:after
{
    content: "";
    border-top: 10px solid #fed001;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-left: -10px;
    z-index: 10;
    display: none;
}
.nav ul.item1> li:hover:after{
    display: block;    
}

.nav ul.item1> li.on a,
.nav ul.item1> li:hover a
{
    color: #fff;
}


nav ul.item2 {
    display: none;
    position: absolute;
    min-width: 100%;
    top: 100%;
    left: 0;
    z-index: 6666;
    background-color: #f5f5f5;
}

nav ul.item2 li {
    display: block;
    border-bottom: 1px solid #eee;
    text-align: center;
    white-space: nowrap;
}

nav ul.item2 li a {
    color: #5f5d5d;
    display: block;
}

nav ul.item2 li:hover a{
    color: #014c85;
}


nav ul.item1>li:hover ul.item2 {
    display: block;
}


.navbar-toggle
{
    display: none;
    position: relative;
    float: right;
    padding: 9px 10px;
    background-color: transparent;
    background-image: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    margin-right: 10px;
}

.navbar-toggle .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background-color: #888;
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

.nav .navMask
{
    display: none;
}

@media (max-width: 768px) 
{    
    body
    {
        padding-top: 60px;
    }
    .logoBox
    {
        position: fixed;
        top: 0;
        left: 0;
        height: 40px;
        padding: 10px 0;
        box-sizing: content-box;
        background-color: #fff;
        z-index: 90;
    }
    .logoBox .logoImg
    {
        max-height: 100%;
        margin-top: 0;
        margin-left: 10px;
    }
    
    
    .logoBox .topCotactBox {
        display: none;
    }
    .navbar-toggle
    { 
        display: block;
    }
    
    .nav{ padding: 1em; background-color: #fff; border-top: 1px solid #e7e7e7; }
    .nav ul.item1> li{ color: #b0b0b0; display: block; width: 100%; border-left: 0;text-align: left; padding: .1em 0;font-size: 20px;text-indent: 1em;}
    .nav .item2{display: none !important;}
    .nav a{ line-height: 2;}
    .nav ul.item1> li:after{display: none !important;}
    .nav
    {
        visibility: visible;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
        width: 50%;
        height: 100%;
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
        z-index: 666;
    }
    .nav.on
    {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .navMask 
    {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background-color: rgba(0,0,0,.5);
        z-index: 90;
    }
}

/*头部信息*/

/* 轮播图 */
.slideBox {
  overflow: hidden;
  position: relative;
}

.slideBox li {
  width: 100%;
}

.slideBox li img {
  width: 100%;
}

.slideBox .pcBanner{
    display: block;
}
    
.slideBox .mobileBanner{
    display: none;
}

@media (max-width: 768px) 
{
    .slideBox .pcBanner{
        display: none;
    }
    
    .slideBox .mobileBanner{
        display: block;
    }
}
/* 轮播图 */

/*底部信息*/
.footerBox
{
    background: #292929;
    overflow: hidden;
    color: #e2e2e2;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footerBox a
{
    color: #e2e2e2;
}

.footerBox .footer
{
    padding-left: 10px;
    padding-right: 10px;
}

.footerBox .bottomNav
{
    width: 852px;
    margin: 25px auto 0 auto;
}

.footerBox .bottomNav li
{
    float: left;
    border-right: #fff solid 1px;
    line-height: 1;
}

.footerBox .bottomNav li:first-child a
{
    padding-left: 0px;
}

.footerBox .bottomNav li:last-child
{
    border-right: none;
}

.footerBox .bottomNav li a
{
    color: #fff;
    font-size: 16px;
    padding: 0px 20px;
    font-weight: bold;
}
.bottomContactBox
{
    margin-top: 40px;
}
.footerBox .bottomContactInfo
{
    width: 710px;
    max-width: 100%;
    margin: 0 auto;
    column-count: 3;
    column-gap: 1em;
}

.footerBox .bottomContactInfo div
{
    line-height: 25px;
}

.footerBox .qrCodeText
{
    line-height: 30px;
    text-align: center;
}
.footerBox .bottomContactCode 
{
    width: 45%;
    float: left;
}
.footerBox .bottomContactCode .qrCode
{
    float: right;
    text-align: center;
}
.footerNav
{
    background: #00369a;
    display: flex;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 9999;
    display: none;
    border-top: 1px solid #fff;
}

.footerNav a
{
    display: block;
    color: #fff;
    font-size: 16px;
}

.footerNav li
{
    box-sizing: border-box;
    width: 25%;
    text-align: center;
    border-right: #fff solid 1px;
    padding-top: 5px;
    padding-bottom: 2px;
}

.footerNav li:last-child
{
    border: none;
}

.footerNav li img
{
    margin: 0 auto 2px auto;
    height: 40px;
}
.footerLine
{
    background-color: #232323;
    color: #fff;
    padding: 10px 0;
}
.footerLine a
{
    color: #fff;
}
.footerLine span
{
    float: left;
}
.footerLine span.right
{
    float: right;
}
@media (max-width: 768px) 
{
    .bottomNav
    {
        display: none;
    }
    
    .footerBox .bottomContactInfo
    {
        margin-top: 0px;
    }
    
    .footerBox .bottomContactBox
    {
        margin-top: 0;
    }
    
    .footerNav
    {
        display: flex;
    }
    .footerLine
    {
        display: none;
    }
    .footerBox .bottomContactInfo,
    .footerBox .bottomContactCode
    {
        width: 100%;
        float: none;
        text-align: center;
    }
    .footerBox .bottomContactCode .qrCode
    {
        float: none;
    }
    .footerBox .bottomContactCode .qrCode img
    {
        margin: 10px auto 0;
    }
    .footerBox .bottomContactInfo
    {
        column-count: initial;
    }
}

.sharedCode {
    width: 208px;
    overflow: hidden;
    margin: 0 auto;
}



/*公共留言*/

.bottomLeave
{
    background: #f4f4f4;
    margin-top: 90px;
    overflow: hidden;
    padding: 60px;
}

.bottomLeave .bottomLeaveTitle
{
    font-size: 24px;
}

.bottomLeave .items
{
    margin-top: 50px;
    display: flex;
}

.bottomLeave .name, .bottomLeave .tel
{
    width: 290px;
    height: 60px;
    padding: 5px;
    box-sizing: border-box;
    margin-right: 15px;
}

.bottomLeave .content
{
    width: 420px;
    height: 60px;
    padding: 5px;
    box-sizing: border-box;
}

.bottomLeave input
{
    border: none;
font-family: inherit;
font-size: 16px;
}

.bottomLeave input::-webkit-input-placeholder{
    color: #6f6f6f;
}

.bottomLeave .submitBtn
{
    width: 170px;
    background: #00369a;
    color: #fff;
    height: 60px;
    border: none;
    outline: none;
}

.bottomLeave .contacInfos
{
    display: flex;
    margin-top: 35px;
}

.bottomLeave .contacInfos .item img
{
    margin-right: 15px;
    float: left;
}

.bottomLeave .contacInfos .item .img2
{
    margin-top: -5px;
}

.bottomLeave .contacInfos .item .img3
{
    margin-top: -3px;
}

.bottomLeave .contacInfos .item .text
{
    float: left;
    font-size: 18px;
    color: #707070;
    margin-right: 60px;
}
@media (max-width: 768px) 
{
    .bottomLeave{
        padding: 30px 15px;
        margin-top: 20px;
        background: none;
    }
    .bottomLeave .items{
        flex-direction: column;
        margin-top: 20px;
    }
    .bottomLeave .bottomLeaveTitle{
        font-size: 18px;
        border-left: 2px solid #00369a;
        padding-left: 15px;
    }
    .bottomLeave .name, .bottomLeave .tel,.bottomLeave .content,.bottomLeave .submitBtn{
        height: 3em;
        line-height: 3em;
        width: 100%;
        font-size: 13px;
        margin-bottom: 1em;
        border: 1px solid #e7e7e7;
    }
    .bottomLeave .submitBtn{
        border-radius: 3em;
    }
    .bottomLeave .contacInfos{
        display: none;
    }
}